home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / sync / RCS / sync.c,v < prev    next >
Encoding:
Text File  |  1989-03-20  |  838 b   |  62 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    mgbaker:1.1; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     88.08.16.11.04.28;  author nelson;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @@
  17.  
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @/* 
  26.  * sync.c --
  27.  *
  28.  *    Write the file system's cache to disk.
  29.  *
  30.  * Copyright (C) 1988 Regents of the University of California
  31.  * All rights reserved.
  32.  */
  33.  
  34. #ifndef lint
  35. static char rcsid[] = "$Header: vmstat.c,v 1.3 88/08/15 15:53:19 nelson Exp $ SP
  36. RITE (Berkeley)";
  37. #endif not lint
  38.  
  39. #include "sys.h"
  40.  
  41.  
  42. /*
  43.  *----------------------------------------------------------------------
  44.  *
  45.  * main --
  46.  *
  47.  *    The main program for sync.
  48.  *
  49.  * Results:
  50.  *    None.
  51.  *
  52.  * Side effects:
  53.  *    None.
  54.  *
  55.  *----------------------------------------------------------------------
  56.  */
  57. main()
  58. {
  59.     Sys_Shutdown(SYS_WRITE_BACK, NULL);
  60. }
  61. @
  62.